body {
    font-family: 'Futura Lt', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}



.banner-nuestra-gente-container {
    position: relative;
    text-align: left;
    margin: 10px;
}

.banner-ppal-nuestra-gente {
    width: 100%;
    height: auto;
}


/*  */

.content-image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 20px auto;
}

.content-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content-image {
    width: 100%;
    /* Ajusta según tu preferencia */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.content-text {
    flex: 1;
    text-align: left;
    padding-left: 40px;
}

.title-text {
    font-size: 24px;
    margin-bottom: 10px;
    color: #13acec;
}

p {
    font-size: 19px;
    line-height: 1.5;
}

/* Responsive: Cambiar la imagen abajo del texto en dispositivos móviles */
@media screen and (max-width: 768px) {
    .content-image-text {
        flex-direction: column;
        text-align: center;
    }

    .content-text {
        padding-left: 0;
        text-align: center;
    }

    .content-image-container {
        order: 2;
        /* La imagen pasará abajo */
    }

}

.separador {
    display: flex;
    align-items: center;
    width: 100%;
}

.linea {
    flex-grow: 1;
    height: 1px;
    background-color: #13acec;
    margin-right: 10px;
    margin-left: 50px;
}

.logo {
    height: 50px;
    /* Ajusta según necesidad */
    margin-right: 50px;

}



#header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.slider {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    /* Ajusta según tu diseño */
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    /* 3 imágenes */
    animation: slide 12s infinite;
}

.slides img {
    width: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    33% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0%);
    }
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}